runtime.gobuf.bp (field)

13 uses

	runtime (current package)
		mprof.go#L566: 			nstk = 1 + fpTracebackPartialExpand(skip, unsafe.Pointer(gp.m.curg.sched.bp), mp.profStack[1:])
		panic.go#L1217: 		gp.sched.bp = fp - 2*goarch.PtrSize
		panic.go#L1222: 		gp.sched.bp = sp - goarch.PtrSize
		proc.go#L4358: 	gp.sched.bp = bp
		proc.go#L4557: 	gp.syscallbp = gp.sched.bp
		proc.go#L4576: 			print("entersyscallblock inconsistent bp ", hex(bp), " ", hex(gp.sched.bp), " ", hex(gp.syscallbp), " [", hex(gp.stack.lo), ",", hex(gp.stack.hi), "]\n")
		runtime2.go#L343: 	bp   uintptr // for framepointer-enabled architectures
		stack.go#L751: 		bp := gp.sched.bp
		stack.go#L758: 	oldfp := gp.sched.bp
		stack.go#L759: 	adjustpointer(adjinfo, unsafe.Pointer(&gp.sched.bp))
		stack.go#L765: 			memmove(unsafe.Pointer(gp.sched.bp), unsafe.Pointer(oldfp), goarch.PtrSize)
		stack.go#L766: 			adjustpointer(adjinfo, unsafe.Pointer(gp.sched.bp))
		tracestack.go#L116: 				nstk += 1 + fpTracebackPCs(unsafe.Pointer(gp.sched.bp), pcBuf[2:])